1890C - Qingshan Loves Strings 2 - CodeForces Solution


constructive algorithms

Please click on ads to support us..

C++ Code:

#include<bits/stdc++.h>
#define ll long long  
using namespace std;

bool check(string s)
{
        ll dem = 0;
        ll n = s.size();
        for (int i = 0 ; i < n / 2 ; i++)
        {
                if (s[i] != s[n - i - 1])dem++;
        }
        if (dem == n / 2)return true;
        return false;
}

void solve()
{      
        ll n;
        string s;
        cin >> n >> s;
        if (n % 2 == 1)
        {
                cout << -1 << "\n";
                return; 
        }
        vector<ll>a;
        for (int k = 0 ; k < 300 ; k++)
        {
                ll n = s.size();
                for (int i = 0 ; i < n / 2; i++)
                {
                        if (s[i] == s[n - 1 - i] && s[i] == '0')
                        {
                                a.push_back(n - i);
                                s.insert(n - i, "01");
                                break;
                        }
                        if (s[i] == s[n - 1 - i] && s[i] == '1')
                        {
                                a.push_back(i);
                                s.insert(i, "01");
                                break;
                        }
                }        
        }
        if (check(s))
        {
                cout << a.size() << "\n";
                for (auto i: a)cout << i << " ";   
                cout << "\n";
                return;
        }
        cout << -1 << "\n";
}

int main()
{
        ios_base::sync_with_stdio(false), cin.tie(0), cout.tie(0);
        ll t;
        cin >> t;
        while(t--)
        {
                solve();
        }
}


Comments

Submit
0 Comments
More Questions

1178D - Prime Graph
1711D - Rain
534A - Exam
1472A - Cards for Friends
315A - Sereja and Bottles
1697C - awoo's Favorite Problem
165A - Supercentral Point
1493A - Anti-knapsack
1493B - Planet Lapituletti
747B - Mammoth's Genome Decoding
1591C - Minimize Distance
1182B - Plus from Picture
1674B - Dictionary
1426C - Increase and Copy
520C - DNA Alignment
767A - Snacktower
1365A - Matrix Game
714B - Filya and Homework
31A - Worms Evolution
1691A - Beat The Odds
433B - Kuriyama Mirai's Stones
892A - Greed
32A - Reconnaissance
1236D - Alice and the Doll
1207B - Square Filling
1676D - X-Sum
1679A - AvtoBus
1549A - Gregor and Cryptography
918C - The Monster
4B - Before an Exam